*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: rgb(216, 65, 65);
}
.ravi{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
background-color: rgb(80, 67, 67);
    border: 5px;
}

.container{
    width: 400px;
    /* height: 300px; */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 1px 0px 10px 2px rgb(100, 98, 98);
    background-color: rgb(14, 16, 22);
    
}
.heading{
    text-align: center;
    font-size: 30px;    
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: bold;
    color:rgb(78, 59, 202);
    margin-top: 35px;
    font-weight: 900;
    text-shadow: 5px;
    
}
/* Style for all input containers */
.input-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 30px;
    color: black;
}
.input-container label{
    font-size: larger;
    color:rgb(39, 56, 206);
    font-weight: bold;
}
.input-container input{
    font-size: larger;
    border:none;
    box-shadow: 0px 0px 2px 1px rgb(236, 231, 231);
    padding: 4px 10px;
    border-radius: 5px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;    
    outline: none;
    width: 50%;
    color: black;
}
.input-container input:hover{
    box-shadow: 0px 0px 2px 1px rgb(129, 123, 123);
}

/* submit button style */
.submit-container{
    margin: 20px;
    display: flex;
    justify-content: center;
}
#calculate{    
    padding:4px 10px;
    font-size: larger;
    background-color: rgb(72, 70, 95);
    border-radius: 3px;
    color: rgb(58, 55, 55);
    border:none;
    outline: none;
    box-shadow: 2px 3px 4px rgb(20, 19, 19);
    transition: 0.4s;
    cursor: pointer;

}
#calculate:active{
    box-shadow: none;
    font-size:large;
}

/* Loan duration style */
#loanTenure{
    width: 58px;
    margin-left: 65px;
    margin-right: 0;        
    /* background-color: aqua; */
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}
.radio-container{    
    display: flex;
    margin-left: 0;
}
.radio-container input[type="radio"]{
    display: none;
}
.radio-container label{
    background-color: rgb(236, 235, 234);
    padding: 3.7px 5px;        
    box-shadow: 0px 0px 2px 1px rgb(152, 145, 145);
    cursor: pointer;
    transition: all 0.3s;    
    
}
#month + label{
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
.radio-container label:hover{
    background-color: rgb(116, 101, 101);
    color:white;
} 
.radio-container input[type="radio"]:checked+label{
    background-color:  rgb(116, 101, 101);
    color: white;
} 

/* Output */

.output{
    margin: 10px;    
    /* box-shadow: 0px 0px 5px rgb(51, 48, 48); */
    display: flex;
    flex-direction: column;
    /* display: none; */

}
.output p{
    font-size: 16px;
    border-radius: 4px;
    padding: 4px;
    margin:4px;    
    width: 100%;
    box-shadow: 0px 0px 5px rgb(24, 19, 19);
    color:rgb(85, 96, 197);
    font-weight: 550;
    

}
.output p span{
    float: right;
    word-wrap: break-word;
    color: rgb(235, 224, 227);
    font-weight: bolder;
    font-size: larger;
}